Resolve Dependabot security-update deadlock caused by transitive undici@5.x - #44
Merged
Merged
Conversation
dcapslock
approved these changes
Jun 5, 2026
dcapslock
marked this pull request as ready for review
June 5, 2026 03:10
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job Dependabot
Resolve Dependabot security-update deadlock caused by transitive Jun 5, 2026
undici@5.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dependabot was failing with
security_update_not_possiblebecause the lockfile still resolved a legacy@semantic-release/npm@13.1.1path that pinned@actions/http-client@2.xand thereforeundici@5.29.0(below the minimum fixed line).Root-cause correction
@semantic-release/npmonto^13.1.5, eliminating the stale transitive branch that required@actions/core@1.x.Dependency graph cleanup (lockfile)
yarn.lockso the graph no longer includes:@semantic-release/npm@13.1.1@actions/http-client@2.2.3undici@5.29.0undicionly via6.xpaths.Implementation snippet
{ "resolutions": { "@semantic-release/npm": "^13.1.5", "lodash": "^4.18.0" } }